#ifndef SINGLE
//  An adapted ObjectSpace example for use with SGI STL

#include <algo.h>
#include <iostream.h>

#ifdef MAIN
#define min1_test main
#endif
#endif
int min1_test(int, char**)
{
  cout<<"Results of min1_test:"<<endl;
#ifndef ACORN_CFRONT
  cout << STL_NAMESPACE::min(42, 100) << endl;
#else
  cout << min(42, 100) << endl;
#endif
  return 0;
}
